update visual studio files
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3029
This commit is contained in:
parent
c4f26c724b
commit
e2b114bfe4
2 changed files with 11 additions and 5 deletions
|
@ -19,7 +19,7 @@
|
|||
/* TODO:
|
||||
- make menu a bufferedwindow with shadow
|
||||
*/
|
||||
/* $Id: gui_tk.cpp,v 1.1 2007-10-28 16:33:02 qbix79 Exp $ */
|
||||
/* $Id: gui_tk.cpp,v 1.2 2007-10-28 17:05:28 c2woody Exp $ */
|
||||
|
||||
/** \file
|
||||
* \brief Implementation file for gui_tk.
|
||||
|
@ -1423,10 +1423,10 @@ static const Key SDL_to_GUI(const SDL_keysym &key)
|
|||
default: break;
|
||||
}
|
||||
return Key(key.unicode, ksym,
|
||||
key.mod&KMOD_SHIFT,
|
||||
key.mod&KMOD_CTRL,
|
||||
key.mod&KMOD_ALT,
|
||||
key.mod&KMOD_META);
|
||||
(key.mod&KMOD_SHIFT)>0,
|
||||
(key.mod&KMOD_CTRL)>0,
|
||||
(key.mod&KMOD_ALT)>0,
|
||||
(key.mod&KMOD_META)>0);
|
||||
}
|
||||
|
||||
/** \brief Internal class that handles different screen bit depths and layouts the SDL way */
|
||||
|
|
|
@ -628,12 +628,18 @@
|
|||
<File
|
||||
RelativePath="..\src\gui\render_templates.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\gui\sdl_gui.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\gui\sdl_mapper.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\gui\sdlmain.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\libs\gui_tk\gui_tk.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="ints"
|
||||
|
|
Loading…
Add table
Reference in a new issue