Skip to content

Commit be85e49

Browse files
committed
Remove the host unit as we expect to be relative
1 parent 457b48b commit be85e49

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

examples/alpha/alpha.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ int main(int argc, char *argv[])
5757
gsKit_init_screen(gsGlobal);
5858
#ifdef HAVE_LIBTIFF
5959
Sprite.Delayed = 1;
60-
if(gsKit_texture_tiff(gsGlobal, &Sprite, "host:alpha.tiff") < 0)
60+
if(gsKit_texture_tiff(gsGlobal, &Sprite, "alpha.tiff") < 0)
6161
{
6262
printf("Loading Failed!\n");
6363
}

examples/bigtex/bigtex.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ int main(int argc, char *argv[])
4747
bigtex.Filter = GS_FILTER_NEAREST;
4848
bigtex.Delayed = 1;
4949

50-
// gsKit_texture_raw(gsGlobal, &bigtex, "host:bigtex.raw");
51-
gsKit_texture_bmp(gsGlobal, &bigtex, "host:bigtex.bmp");
52-
// gsKit_texture_jpeg(gsGlobal, &bigtex, "host:bigtex.jpg");
50+
// gsKit_texture_raw(gsGlobal, &bigtex, "bigtex.raw");
51+
gsKit_texture_bmp(gsGlobal, &bigtex, "bigtex.bmp");
52+
// gsKit_texture_jpeg(gsGlobal, &bigtex, "bigtex.jpg");
5353

5454

5555
x = 0.0f;

examples/coverflow/coverflow.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ int main(int argc, char *argv[])
116116
// Load textures
117117
for (i = 0; i < TEXTURE_COUNT; i++) {
118118
Tex[i].Delayed = 1;
119-
snprintf(filename, 80, "host:covers/game%d_%d_%d_08bit.bmp", i+1, 512, 512);
119+
snprintf(filename, 80, "covers/game%d_%d_%d_08bit.bmp", i+1, 512, 512);
120120
gsKit_texture_bmp(gsGlobal, &Tex[i], filename);
121121
Tex[i].Filter = GS_FILTER_LINEAR;
122122
}

examples/fb/fb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ int main(int argc, char *argv[])
138138

139139
#ifdef USEBMP
140140
backtex.Delayed = 0;
141-
gsKit_texture_bmp(gsGlobal, &backtex, "host:bsdgirl.bmp");
141+
gsKit_texture_bmp(gsGlobal, &backtex, "bsdgirl.bmp");
142142
#endif
143143

144144
/* print out useless debug information */

examples/fhdbg/fhdbg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ int main(int argc, char* argv[])
5757
// Load textures
5858
for (iTexId = 0; iTexId < TEXTURE_COUNT; iTexId++) {
5959
Tex[iTexId].Delayed = 1;
60-
snprintf(filename, 80, "host:images/fhdbg_0%d.jpg", iTexId + 1);
60+
snprintf(filename, 80, "images/fhdbg_0%d.jpg", iTexId + 1);
6161
gsKit_texture_jpeg(gsGlobal, &Tex[iTexId], filename);
6262
gsKit_hires_prepare_bg(gsGlobal, &Tex[iTexId]);
6363
}

examples/font/font.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ int main(int argc, char *argv[])
2323

2424
gsGlobal = gsKit_init_global();
2525

26-
gsFont = gsKit_init_font(GSKIT_FTYPE_BMP_DAT, "host:dejavu.bmp");
27-
// gsFont = gsKit_init_font(GSKIT_FTYPE_PNG_DAT, "host:dejavu.png");
26+
gsFont = gsKit_init_font(GSKIT_FTYPE_BMP_DAT, "dejavu.bmp");
27+
// gsFont = gsKit_init_font(GSKIT_FTYPE_PNG_DAT, "dejavu.png");
2828

2929
dmaKit_init(D_CTRL_RELE_OFF,D_CTRL_MFD_OFF, D_CTRL_STS_UNSPEC,
3030
D_CTRL_STD_OFF, D_CTRL_RCYC_8, 1 << DMA_CHANNEL_GIF);

examples/fontm/fontm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
7878
gsFontM->Spacing = 0.95f;
7979

8080
test.Delayed = 1;
81-
gsKit_texture_bmp(gsGlobal, &test, "host:test.bmp");
81+
gsKit_texture_bmp(gsGlobal, &test, "test.bmp");
8282
test.Filter = GS_FILTER_LINEAR;
8383

8484
gsKit_mode_switch(gsGlobal, GS_ONESHOT);

examples/hires/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ int render(GSGLOBAL *gsGlobal)
8989
#ifdef TEX_BG
9090
bigtex.Filter = GS_FILTER_LINEAR;
9191
bigtex.Delayed = 1;
92-
gsKit_texture_jpeg(gsGlobal, &bigtex, "host:bigtex.jpg");
92+
gsKit_texture_jpeg(gsGlobal, &bigtex, "bigtex.jpg");
9393
#endif
9494

9595
#ifdef FHD_BG
9696
fhdbg.Filter = GS_FILTER_LINEAR;
9797
fhdbg.Delayed = 1;
9898
fhdbg.Vram = GSKIT_ALLOC_ERROR;
99-
gsKit_texture_jpeg(gsGlobal, &fhdbg, "host:fhdbg.jpg");
99+
gsKit_texture_jpeg(gsGlobal, &fhdbg, "fhdbg.jpg");
100100
gsKit_hires_prepare_bg(gsGlobal, &fhdbg);
101101
gsKit_hires_set_bg(gsGlobal, &fhdbg);
102102
#endif

examples/pixelperfect/pixelperfect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ int main(int argc, char *argv[])
6161
// Load textures
6262
tx128.Delayed = 1;
6363
tx132.Delayed = 1;
64-
gsKit_texture_png(gsGlobal, &tx128, "host:128x128.png");
65-
gsKit_texture_png(gsGlobal, &tx132, "host:132x132.png");
64+
gsKit_texture_png(gsGlobal, &tx128, "128x128.png");
65+
gsKit_texture_png(gsGlobal, &tx132, "132x132.png");
6666

6767
gsKit_set_clamp(gsGlobal, GS_CMODE_CLAMP);
6868
gsKit_set_test(gsGlobal, GS_ZTEST_OFF);

examples/png-texture/textures.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int main(int argc, char *argv[])
5656

5757
gsKit_clear(gsGlobal, White);
5858
#ifdef HAVE_LIBPNG
59-
gsKit_texture_png(gsGlobal, &Tex1, "host:test.png");
59+
gsKit_texture_png(gsGlobal, &Tex1, "test.png");
6060
printf("Texture 1 Height: %i\n",Tex1.Height);
6161
printf("Texture 1 Width: %i\n",Tex1.Width);
6262

0 commit comments

Comments
 (0)