c89 compliant? (#237)

* Replace C++ comments into  C comments

* Move INLINE out of Makefile.common, move to fceu-types.h

An INLINE define is still existing in Makefile.common for msvc (dont
have a way to to test that). Moved the rest into fceu-types.h using the
one already existing from emu2413.h.

* Increase maximum volume for apu channels
This commit is contained in:
retro-wertz
2018-12-04 10:25:17 +08:00
committed by hizzlekizzle
parent 829a7552f1
commit b5803e0e1d
7 changed files with 34 additions and 37 deletions

View File

@@ -97,7 +97,7 @@ static DECLFW(M69Write1) {
}
}
// SUNSOFT-5/FME-7 Sound
/* SUNSOFT-5/FME-7 Sound */
static void AYSound(int Count);
static void AYSoundHQ(void);

View File

@@ -7,20 +7,6 @@
#include <math.h>
#include "../fceu-types.h"
#ifndef INLINE
#if defined(_MSC_VER)
#define INLINE __forceinline
#elif defined(__GNUC__)
#define INLINE __inline__
#elif defined(_MWERKS_)
#define INLINE inline
#else
#define INLINE
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif

View File

@@ -226,16 +226,16 @@ void UNROM512_Init(CartInfo *info) {
mirror = (head.ROM_type & 1) | ((head.ROM_type & 8) >> 2);
switch (mirror) {
case 0: // hard horizontal, internal
case 0: /* hard horizontal, internal */
SetupCartMirroring(MI_H, 1, NULL);
break;
case 1: // hard vertical, internal
case 1: /* hard vertical, internal */
SetupCartMirroring(MI_V, 1, NULL);
break;
case 2: // switchable 1-screen, internal (flags: 4-screen + horizontal)
case 2: /* switchable 1-screen, internal (flags: 4-screen + horizontal) */
SetupCartMirroring(MI_0, 0, NULL);
break;
case 3: // hard four screen, last 8k of 32k RAM (flags: 4-screen + vertical)
case 3: /* hard four screen, last 8k of 32k RAM (flags: 4-screen + vertical) */
SetupCartMirroring(4, 1, VROM + (info->vram_size - 8192));
break;
}