diff --git a/.gitignore b/.gitignore index b878f26..e2e8d4d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,10 +2,10 @@ xcuserdata xcshareddata/ x64/ .vs/ -engine.vcxproj.user +PanoPainter.vcxproj.user ipch/ -engine.VC.opendb -engine.sdf +PanoPainter.VC.opendb +PanoPainter.sdf android/build/ android/.gradle/ android/.externalNativeBuild/ diff --git a/PanoPainter.rc b/PanoPainter.rc index 57ab641..3136fd9 100644 Binary files a/PanoPainter.rc and b/PanoPainter.rc differ diff --git a/libs/wacom/WinTab/Utils.cpp b/libs/wacom/WinTab/Utils.cpp index 48eba09..17f3e3a 100644 --- a/libs/wacom/WinTab/Utils.cpp +++ b/libs/wacom/WinTab/Utils.cpp @@ -15,7 +15,7 @@ ---------------------------------------------------------------------------- */ #include "pch.h" -#include "..\..\engine\log.h" +#include "..\..\src\log.h" #include "Utils.h" ////////////////////////////////////////////////////////////////////////////// diff --git a/scripts/pre-build.py b/scripts/pre-build.py index 3646d5d..c6af7ad 100644 --- a/scripts/pre-build.py +++ b/scripts/pre-build.py @@ -22,7 +22,7 @@ version_gen_h += '#define PP_RC_BUILD_VERSION %s,0\n' % version_number.replace(' version_gen_h += '#define PP_RC_BUILD_VERSION_STRING "%s\\0"\n' % version version_gen_h += '#define PP_RC_PRODUCT_VERSION %s,0,0\n' % tag.replace('.',',') version_gen_h += '#define PP_RC_PRODUCT_VERSION_STRING "%s\\0"\n' % tag -f = open("engine/version.gen.h", "w") +f = open("src/version.gen.h", "w") f.write(version_gen_h)