mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
MORTEVIELLE: real -> float
This commit is contained in:
parent
321b86339f
commit
b36a336203
@ -1,7 +1,7 @@
|
||||
void droite(int x, int y, int xx, int yy, int coul) {
|
||||
int step, i;
|
||||
real a, b;
|
||||
real xr, yr, xro, yro;
|
||||
float a, b;
|
||||
float xr, yr, xro, yro;
|
||||
|
||||
xr = x;
|
||||
yr = y;
|
||||
@ -9,7 +9,7 @@ void droite(int x, int y, int xx, int yy, int coul) {
|
||||
yro = yy;
|
||||
/*writeln(le_file,'(',x:4,',',y:4,') ==> (',xx:4,',',yy:4,')');*/
|
||||
if (abs(y - yy) > abs(x - xx)) {
|
||||
a = (real)((x - xx)) / (y - yy);
|
||||
a = (float)((x - xx)) / (y - yy);
|
||||
b = (yr * xro - yro * xr) / (y - yy);
|
||||
i = y;
|
||||
if (y > yy) step = -1;
|
||||
@ -20,7 +20,7 @@ void droite(int x, int y, int xx, int yy, int coul) {
|
||||
} while (!(i == yy));
|
||||
/*writeln(le_file,'X == ',a:3:3,' * Y + ',b:3:3);*/
|
||||
} else {
|
||||
a = (real)((y - yy)) / (x - xx);
|
||||
a = (float)((y - yy)) / (x - xx);
|
||||
b = ((yro * xr) - (yr * xro)) / (x - xx);
|
||||
i = x;
|
||||
if (x > xx) step = -1;
|
||||
|
@ -279,7 +279,7 @@ void paint_rect(int x, int y, int dx, int dy) {
|
||||
|
||||
int hazard(int min, int max) {
|
||||
int ha1;
|
||||
real ha2;
|
||||
float ha2;
|
||||
|
||||
/* debug('hazard'); */
|
||||
int hazard_result;
|
||||
|
@ -171,7 +171,7 @@ void ani50() {
|
||||
{
|
||||
int cy, tay;
|
||||
phrase st;
|
||||
real ix;
|
||||
float ix;
|
||||
char ch;
|
||||
|
||||
|
||||
@ -247,7 +247,7 @@ void ani50() {
|
||||
int k;
|
||||
boolean fin;
|
||||
char ch;
|
||||
real x, y;
|
||||
float x, y;
|
||||
|
||||
|
||||
/* debug('o3 music'); */
|
||||
@ -260,7 +260,7 @@ void ani50() {
|
||||
blockread(fic, mem[0x47a0 + 0], 123);
|
||||
close(fic);
|
||||
demus(0x3800, 0x5000, 623);
|
||||
addfix = (real)((tempo_mus - addv[1])) / 256;
|
||||
addfix = (float)((tempo_mus - addv[1])) / 256;
|
||||
cctable(tbi);
|
||||
|
||||
fin = false;
|
||||
|
@ -68,7 +68,7 @@ void veracf(byte b) {
|
||||
|
||||
/* overlay */ void cctable(tablint &t) {
|
||||
int k;
|
||||
array<0, 256, real> tb;
|
||||
array<0, 256, float> tb;
|
||||
|
||||
|
||||
tb[0] = 0;
|
||||
|
@ -66,7 +66,7 @@ void parole(int rep, int ht, int typ) {
|
||||
tempo = tempo_bruit;
|
||||
} else if (haut > 5) tempo = tempo_f;
|
||||
else tempo = tempo_m;
|
||||
addfix = (real)((tempo - addv[0])) / 256;
|
||||
addfix = (float)((tempo - addv[0])) / 256;
|
||||
cctable(tbi);
|
||||
switch (typ) {
|
||||
case 1 : {
|
||||
|
@ -13,7 +13,7 @@
|
||||
/*------------------------- CONSTANTES ----------------------------------*/
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
||||
const real freq0 = 1.19318e6;
|
||||
const float freq0 = 1.19318e6;
|
||||
|
||||
const int seg_syst = 0x6fed;
|
||||
const int segmou = 0x6f00;
|
||||
@ -177,7 +177,7 @@ const array<0, 15, byte> rang
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
||||
typedef varying_string<11> path_chars;
|
||||
typedef real long_int;
|
||||
typedef float long_int;
|
||||
typedef varying_string<255> str255;
|
||||
typedef varying_string<125> str125;
|
||||
typedef varying_string<30> str30;
|
||||
@ -206,7 +206,7 @@ typedef array<0, maxtd, ind> tabind;
|
||||
|
||||
typedef matrix<1, 7, 0, 24, byte> tab_mlieu;
|
||||
|
||||
typedef array<0, 255, real> table;
|
||||
typedef array<0, 255, float> table;
|
||||
typedef array<0, 255, int> tablint;
|
||||
|
||||
typedef int word1;
|
||||
@ -393,7 +393,7 @@ tab_mlieu v_lieu;
|
||||
tfxx l;
|
||||
tablint tbi;
|
||||
chariot c1, c2, c3;
|
||||
real addfix;
|
||||
float addfix;
|
||||
pal_cga palsav;
|
||||
array<0, 90, tabdb> tabpal;
|
||||
pal_cga palcga;
|
||||
@ -424,7 +424,7 @@ void hirs() {
|
||||
break;
|
||||
case ams : {
|
||||
hires;
|
||||
inline_((real)(0xb8) / 6 / 0 / /* => mov ax,6 */
|
||||
inline_((float)(0xb8) / 6 / 0 / /* => mov ax,6 */
|
||||
0xcd / 0x10); /* => int 16 */
|
||||
port[0x3d9] = 15;
|
||||
port[0x3df] = 0;
|
||||
@ -433,7 +433,7 @@ void hirs() {
|
||||
}
|
||||
break;
|
||||
case ega : {
|
||||
inline_((real)(0xb8) / 14 / 0 / /* MOV AX, 14 ; mode video 14 = 640*200 16 couleurs */
|
||||
inline_((float)(0xb8) / 14 / 0 / /* MOV AX, 14 ; mode video 14 = 640*200 16 couleurs */
|
||||
0xcd / 0x10); /* INT 16 */
|
||||
res = 2;
|
||||
}
|
||||
@ -445,7 +445,7 @@ void hirs() {
|
||||
port[0x3b4] = i;
|
||||
port[0x3b5] = herc[i];
|
||||
}
|
||||
inline_((real)(0xfc) / 0xb9 / 0 / 0x80 / 0xb8 / 0 / 0xb0 / 0x8e / 0xc0 / 0x31 / 0xff / 0x31 / 0xc0 / 0xf3 / 0xab);
|
||||
inline_((float)(0xfc) / 0xb9 / 0 / 0x80 / 0xb8 / 0 / 0xb0 / 0x8e / 0xc0 / 0x31 / 0xff / 0x31 / 0xc0 / 0xf3 / 0xab);
|
||||
port[0x3b8] = 10;
|
||||
res = 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user