mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-29 16:57:56 +00:00
use find_file in nonisotropic and netgen
This commit is contained in:
@@ -140,7 +140,7 @@ EX namespace netgen {
|
||||
|
||||
void loadData() {
|
||||
|
||||
fhstream f("papermodeldata.txt", "rt");
|
||||
fhstream f(find_file("papermodeldata.txt"), "rt");
|
||||
if(!f.f) return;
|
||||
|
||||
if(!scan(f, CELLS, SX, SY, PX, PY, nscale, BASE, el, created)) return;
|
||||
|
@@ -84,8 +84,7 @@ EX namespace sn {
|
||||
|
||||
void tabled_inverses::load() {
|
||||
if(loaded) return;
|
||||
FILE *f = fopen(fname.c_str(), "rb");
|
||||
if(!f) f = fopen((rsrcdir + fname).c_str(), "rb");
|
||||
FILE *f = fopen(find_file(fname).c_str(), "rb");
|
||||
if(!f) { addMessage(XLAT("geodesic table missing")); pmodel = mdPerspective; return; }
|
||||
hr::ignore(fread(&PRECX, 4, 1, f));
|
||||
hr::ignore(fread(&PRECY, 4, 1, f));
|
||||
|
Reference in New Issue
Block a user