some fixes

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1508 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox
2008-12-12 10:33:02 +00:00
parent bd1aa13182
commit 2c9f66e3b2
4 changed files with 60 additions and 15 deletions

View File

@ -190,7 +190,8 @@ inline u64 swap64(u64 data) {return(((u64)swap32(data) << 32) | swap32(data >> 3
// Utility functions
void PanicAlert(const char* text, ...);
void PanicAlert(const char* format, ...);
void SuccessAlert(const char* format, ...);
bool PanicYesNo(const char* text, ...);
bool AskYesNo(const char* text, ...);