Skip to content

Commit

Permalink
Fix for CMake missing launcher tamplates on Windows
Browse files Browse the repository at this point in the history
Former-commit-id: db4e313
  • Loading branch information
mwydmuch committed May 8, 2016
1 parent be94c62 commit 3f1800b
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion include/ViZDoomDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ namespace vizdoom{
#define VIZDOOM_LIB_VERSION_STR "1.0.1"

typedef unsigned char uint8_t;
#define BYTE uint8_t;

struct GameState {
unsigned int number;
Expand Down
2 changes: 1 addition & 1 deletion src/lib_python/ViZDoomGamePython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ namespace vizdoom {
bool DoomGamePython::loadConfig(boost::python::str const &pyPath){
const char* cPath = boost::python::extract<const char *>(pyPath);
std::string path(cPath);
DoomGame::loadConfig(path);
return DoomGame::loadConfig(path);
}

void DoomGamePython::setViZDoomPath(boost::python::str const &pyPath){
Expand Down

0 comments on commit 3f1800b

Please sign in to comment.