• R/O
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

X operations(XOPS)に非常に近いFPSゲームを制作・リメイクし、成果物をオープンソースとして公開することを目的としたプロジェクトです。


Commit MetaInfo

修訂92 (tree)
時間2015-06-07 21:34:24
作者xops-mikan

Log Message

WinMain()関数の引数の型を変更、メモリリーク検出の設定を変更。

Change Summary

差異

--- trunk/main.cpp (revision 91)
+++ trunk/main.cpp (revision 92)
@@ -54,7 +54,7 @@
5454 WindowControl MainWindow;
5555
5656 //! @brief WinMain()関数
57-int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
57+int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
5858 {
5959 //乱数初期化
6060 InitRand();
--- trunk/main.h (revision 91)
+++ trunk/main.h (revision 92)
@@ -35,6 +35,7 @@
3535 #define MAINICON 101 //!< Icon
3636
3737 #ifdef _DEBUG
38+ #define _CRTDBG_MAP_ALLOC
3839 #include <crtdbg.h>
3940 #endif
4041