Debugger sources code clean-up
[clinton/Virtual-Jaguar-Rx.git] / src / gui / app.cpp
index 2ab01c0..9b3dc43 100644 (file)
@@ -61,8 +61,7 @@ int main(int argc, char * argv[])
 #if defined (__GCCWIN32__) || defined (_MSC_VER)\r
        BOOL(WINAPI * AttachConsole)(DWORD dwProcessId);\r
 \r
-       AttachConsole = (BOOL (WINAPI *)(DWORD))\r
-               GetProcAddress(LoadLibraryA("kernel32.dll"), "AttachConsole");\r
+       AttachConsole = (BOOL (WINAPI *)(DWORD))GetProcAddress(LoadLibraryA("kernel32.dll"), "AttachConsole");\r
 \r
        if (AttachConsole != NULL && AttachConsole(((DWORD)-1)))\r
        {\r
@@ -282,7 +281,7 @@ bool ParseCommandLine(int argc, char * argv[])
                // DRAM size max\r
                if (strcmp(argv[i], "--dram-max") == 0)\r
                {\r
-                       printf("DRAM size set at 8 Mbytes.\n");\r
+                       printf("DRAM size set at 8 MBytes.\n");\r
                        vjs.DRAM_size = 0x800000;\r
                }\r
 \r