mirror of https://github.com/nmlgc/ReC98.git
[Maintenance] `#pragma once` has no effect?
Should have remembered this from all the times I've looked at the list of #pragma directives supported by Turbo C++… Still, I would have at least expected a warning, but not even the `ill` warning covers this. Part of P0062, funded by Touhou Patch Center.
This commit is contained in:
parent
1d6fbb8108
commit
c5b07b746e
|
@ -1,7 +1,5 @@
|
||||||
// Common calling convention macro for some functions that originated in TH02
|
// Common calling convention macro for some functions that originated in TH02
|
||||||
// as __cdecl, but were then changed to __pascal in TH03.
|
// as __cdecl, but were then changed to __pascal in TH03.
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#ifndef GAME
|
#ifndef GAME
|
||||||
# error GAME not defined
|
# error GAME not defined
|
||||||
#elif GAME >= 3
|
#elif GAME >= 3
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
// Fixed-point format for expressing world-space coordinates, with 4 bits of
|
// Fixed-point format for expressing world-space coordinates, with 4 bits of
|
||||||
// fractional resolution.
|
// fractional resolution.
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
typedef int subpixel_t;
|
typedef int subpixel_t;
|
||||||
|
|
||||||
inline subpixel_t to_sp(float screen_v) {
|
inline subpixel_t to_sp(float screen_v) {
|
||||||
|
|
Loading…
Reference in New Issue