| 105 | } |
| 106 | |
| 107 | bool DemandLua() |
| 108 | { |
| 109 | #ifdef __WIN_DRIVER__ |
| 110 | if(!CheckLua()) |
| 111 | { |
| 112 | MessageBox(NULL, "lua51.dll was not found. Please get it into your PATH or in the same directory as fceux.exe", "FCEUX", MB_OK | MB_ICONERROR); |
| 113 | return false; |
| 114 | } |
| 115 | return true; |
| 116 | #else |
| 117 | return true; |
| 118 | #endif |
| 119 | } |
| 120 | |
| 121 | extern "C" |
| 122 | { |
no test coverage detected