mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +00:00
The great repository rearrangement of 2017.
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
05985da5a3
commit
1cc9d13ccf
916 changed files with 0 additions and 319 deletions
25
source/tools/src/makesdlkeytrans.cpp
Normal file
25
source/tools/src/makesdlkeytrans.cpp
Normal file
|
@ -0,0 +1,25 @@
|
|||
// gcc b.c -Lc:/mingw32/lib -lmingw32 -lSDLmain -lSDL
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "sdl_inc.h"
|
||||
|
||||
#include "sdlkeytrans.c"
|
||||
|
||||
#undef main
|
||||
|
||||
int main(void)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
buildkeytranslationtable();
|
||||
|
||||
for (i = 0; i < sizeof(keytranslation); i++) {
|
||||
if (i>0) printf(", ");
|
||||
if (i%8 == 7) printf("\n");
|
||||
printf("%d", keytranslation[i]);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue