diff options
| author | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-08-27 10:01:46 +0000 |
|---|---|---|
| committer | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-08-27 10:01:46 +0000 |
| commit | a0ae17c5ffcc71c34dc550b8152c15882a468a0d (patch) | |
| tree | c26f162989b4cea5a757501ed8d5200cec213fec /Source/Core/VideoCommon/Src/VideoState.cpp | |
| parent | 8876637c9f41c65d69b599f7811024da80554cc6 (diff) | |
Fixed message box calls (they aren't even necessary, just checking whether the saving made it into the VideoCommon library
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@345 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoState.cpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoState.cpp b/Source/Core/VideoCommon/Src/VideoState.cpp index abc5789434..ded7f6fb03 100644 --- a/Source/Core/VideoCommon/Src/VideoState.cpp +++ b/Source/Core/VideoCommon/Src/VideoState.cpp @@ -17,18 +17,13 @@ #include "VideoState.h"
#include "TextureDecoder.h"
-#ifdef WIN32
-#include <windows.h>
-#endif
void VideoCommon_SaveState() {
-#ifdef WIN32
- MessageBoxA(NULL, "SAVING STATE", "From Common Video Library", NULL);
-#endif
+ //PanicAlert("Saving state from Video Common Library");
+ //TODO: Save the video state
}
void VideoCommon_LoadState() {
-#ifdef WIN32
- MessageBoxA(NULL, "LOADING STATE", "From Common Video Library", NULL);
-#endif
+ //PanicAlert("Loading state from Video Common Library");
+ //TODO: Load the video state
}
|
