diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2010-05-29 08:28:29 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2010-05-29 08:28:29 +0000 |
| commit | 602bad427a0f9edbbc665033cc3ce8d1883323c9 (patch) | |
| tree | 9882115137e98a59b6d33aed1f984196d58b7246 /apps/plugins/doom/doomstat.h | |
| parent | 9c6e217f29bb0a76ec153574a3d493b020e5fb60 (diff) | |
| download | rockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.zip rockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.tar.gz rockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.tar.bz2 rockbox-602bad427a0f9edbbc665033cc3ce8d1883323c9.tar.xz | |
Doom plugin: Missed properly making a few 'unsigned' on my second pass.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26369 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/doomstat.h')
| -rw-r--r-- | apps/plugins/doom/doomstat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/doomstat.h b/apps/plugins/doom/doomstat.h index a89a4e5..089f93b 100644 --- a/apps/plugins/doom/doomstat.h +++ b/apps/plugins/doom/doomstat.h @@ -59,7 +59,7 @@ enum { am_follow = 8, // keep the player centred am_grid =16, // show grid }; -typedef int automapmode_e; +typedef unsigned automapmode_e; extern automapmode_e automapmode; // Mode that the automap is in // ----------------------------------------------------- |