Skip to content

Commit

Permalink
Forgot to save vs and improved gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
JariKCoding committed Sep 8, 2021
1 parent 92d9db6 commit 8663b7d
Show file tree
Hide file tree
Showing 21 changed files with 9 additions and 44 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
*.pdb
*.log
*.tlog
*.ipdb
*.iobj
*.exp

# Fortran module files
*.mod
Expand Down
1 change: 1 addition & 0 deletions T7Overcharged/T7Overcharged/hapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "initialization.h"
#include "lstate.h"

// TODO: Can we write this shorter without the function functions all the time??

int hksi_hksL_loadbuffer(lua_State* s, HksCompilerSettings* options, char const* buff, size_t sz, char const* name)
{
Expand Down
3 changes: 0 additions & 3 deletions T7Overcharged/T7Overcharged/hotreload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
#include <dirent.h>
#include <map>

#include "hapi.h"


namespace hks
{
void* s_openedMenuData = (void* )0x19C78DB0;
Expand Down
4 changes: 2 additions & 2 deletions T7Overcharged/T7Overcharged/lapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void lua_setfield(lua_State* s, int index, const char* k)

void lua_setglobal(lua_State* s, const char* k)
{
lua_setfield(s, -10002, k);
lua_setfield(s, LUA_GLOBALSINDEX, k);
}

void lua_pop(lua_State* s, int n)
Expand Down Expand Up @@ -204,5 +204,5 @@ void lua_getfield(lua_State* s, int index, const char* k)

void lua_getglobal(lua_State* s, const char* k)
{
lua_getfield(s, -10002, k);
lua_getfield(s, LUA_GLOBALSINDEX, k);
}

This file was deleted.

Binary file not shown.
Binary file not shown.
12 changes: 0 additions & 12 deletions T7Overcharged/T7Overcharged/x64/Release/T7Overcharged.log

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed T7Overcharged/T7Overcharged/x64/Release/vc142.pdb
Binary file not shown.
1 change: 0 additions & 1 deletion T7Overcharged/T7Overcharged/x64/Release/vcpkg.applocal.log

This file was deleted.

Binary file added T7Overcharged/x64/Release/T7Overcharged.dll
Binary file not shown.
Binary file removed T7Overcharged/x64/Release/T7Overcharged.exp
Binary file not shown.
Binary file removed T7Overcharged/x64/Release/T7Overcharged.pdb
Binary file not shown.

0 comments on commit 8663b7d

Please sign in to comment.