]> Dogcows Code - chaz/yoink/blobdiff - src/yoink.rc
configuration cleanup and bugfixes
[chaz/yoink] / src / yoink.rc
index 6bc5b362c8eb69a42b7c90a8591884921928952e..7c224036aa7d59967a5af158ba8fe49b34273f33 100644 (file)
@@ -1,41 +1,43 @@
 
 //
 // Yoink
-// Compile this file with windres and link the object with the executable.
+// Compile this file with windres and link with the executable.
 //
 
 #include <winver.h>
 #include "config.h"
 
 1 VERSIONINFO
-
 FILEVERSION            VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
-#if !defined(NDEBUG)
+FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
+#ifdef NDEBUG
+       FILEFLAGS       0
+#else
        FILEFLAGS       VS_FF_DEBUG
 #endif
 FILEOS                 VOS_NT_WINDOWS32
 FILETYPE               VFT_APP
-{
+BEGIN
        BLOCK "StringFileInfo"
-       {
-               BLOCK "000004b0"
-               {
-                       VALUE "CompanyName", "\000"
+       BEGIN
+               BLOCK "040904b0"
+               BEGIN
+                       VALUE "CompanyName", ""
                        VALUE "FileDescription", "Alien-smashing action game"
                        VALUE "FileVersion", PACKAGE_VERSION
                        VALUE "InternalName", "Yoink"
-                       VALUE "LegalCopyright", "Copyright (C) 2009 Charles McGarvey et al."
-                       VALUE "OriginalFilename", "Yoink.exe"
+                       VALUE "LegalCopyright", "Copyright 2010 Charles McGarvey et al."
+                       VALUE "OriginalFilename", "yoink.exe"
                        VALUE "ProductName", "Yoink"
                        VALUE "ProductVersion", PACKAGE_VERSION
-               }
-       }
+               END
+       END
        BLOCK "VarFileInfo"
-       {
+       BEGIN
                VALUE "Translation", 0x0409, 1200
-       }
-}
+       END
+END
 
-1000 ICON "yoink.ico"
+1000 ICON "../arch/win32/yoink.ico"
 
This page took 0.021363 seconds and 4 git commands to generate.