From 4761e67ec18e639f804efccff2c1c0df1b77b788 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 30 Sep 2004 04:17:23 +0000 Subject: [PATCH] warning C4244: '=' : conversion from 'unsigned int' to 'uint8_t', possible loss of data --- stepmania/src/NoteTypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/NoteTypes.h b/stepmania/src/NoteTypes.h index 79f9f13f4d..8c389b2021 100644 --- a/stepmania/src/NoteTypes.h +++ b/stepmania/src/NoteTypes.h @@ -45,9 +45,9 @@ struct TapNote Type type_, Source source_, bool bAttack_, - unsigned attackIndex_, + uint8_t attackIndex_, bool bKeysound_, - unsigned keysoundIndex_ ) + uint16_t keysoundIndex_ ) { type = type_; source = source_;