fixed dt bug
parent
a2f653bc07
commit
02e7b57d9b
2
4ed.cpp
2
4ed.cpp
|
@ -3846,10 +3846,12 @@ App_Step_Sig(app_step){
|
||||||
Input_Summary dead_input = {};
|
Input_Summary dead_input = {};
|
||||||
dead_input.mouse.x = input->mouse.x;
|
dead_input.mouse.x = input->mouse.x;
|
||||||
dead_input.mouse.y = input->mouse.y;
|
dead_input.mouse.y = input->mouse.y;
|
||||||
|
dead_input.dt = input->dt;
|
||||||
|
|
||||||
Input_Summary active_input = {};
|
Input_Summary active_input = {};
|
||||||
active_input.mouse.x = input->mouse.x;
|
active_input.mouse.x = input->mouse.x;
|
||||||
active_input.mouse.y = input->mouse.y;
|
active_input.mouse.y = input->mouse.y;
|
||||||
|
active_input.dt = input->dt;
|
||||||
|
|
||||||
active_input.keys = get_key_data(&vars->available_input);
|
active_input.keys = get_key_data(&vars->available_input);
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@ popd
|
||||||
|
|
||||||
pushd ..\build
|
pushd ..\build
|
||||||
REM call "..\code\buildsuper.bat" ..\code\4coder_default_bindings.cpp
|
REM call "..\code\buildsuper.bat" ..\code\4coder_default_bindings.cpp
|
||||||
call "..\code\buildsuper.bat" ..\code\power\4coder_experiments.cpp
|
REM call "..\code\buildsuper.bat" ..\code\power\4coder_experiments.cpp
|
||||||
REM call "..\code\buildsuper.bat" ..\code\power\4coder_casey.cpp
|
call "..\code\buildsuper.bat" ..\code\power\4coder_casey.cpp
|
||||||
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
||||||
|
|
||||||
set EXPORTS=/EXPORT:app_get_functions
|
set EXPORTS=/EXPORT:app_get_functions
|
||||||
|
|
|
@ -1222,7 +1222,7 @@ DEFINE_MODAL_KEY(modal_y, cmdid_redo);
|
||||||
DEFINE_MODAL_KEY(modal_z, cmdid_interactive_open);
|
DEFINE_MODAL_KEY(modal_z, cmdid_interactive_open);
|
||||||
|
|
||||||
DEFINE_MODAL_KEY(modal_1, casey_build_search); // TODO(casey): Shouldn't need to bind a key for this?
|
DEFINE_MODAL_KEY(modal_1, casey_build_search); // TODO(casey): Shouldn't need to bind a key for this?
|
||||||
DEFINE_MODAL_KEY(modal_2, write_character); // TODO(casey): Available
|
DEFINE_MODAL_KEY(modal_2, cmdid_open_debug); // TODO(casey): Available
|
||||||
DEFINE_MODAL_KEY(modal_3, write_character); // TODO(casey): Available
|
DEFINE_MODAL_KEY(modal_3, write_character); // TODO(casey): Available
|
||||||
DEFINE_MODAL_KEY(modal_4, write_character); // TODO(casey): Available
|
DEFINE_MODAL_KEY(modal_4, write_character); // TODO(casey): Available
|
||||||
DEFINE_MODAL_KEY(modal_5, write_character); // TODO(casey): Available
|
DEFINE_MODAL_KEY(modal_5, write_character); // TODO(casey): Available
|
||||||
|
|
Loading…
Reference in New Issue