removed useless news

memory-manager
ondra05 2023-01-15 01:00:43 +01:00
parent a3ff86133a
commit 903ddfcf51
No known key found for this signature in database
GPG Key ID: 110E9A6F7CBA6712
1 changed files with 2 additions and 2 deletions

View File

@ -72,12 +72,12 @@ fn get_fs() -> Result<FileSystem<impl ReadWriteSeek>, io::Error> {
)?;
io::copy(
&mut File::open(Path::new("repbuild/limine.cfg"))?,
&mut File::open("repbuild/limine.cfg")?,
&mut fs.root_dir().create_file("limine.cfg")?,
)?;
io::copy(
&mut File::open(Path::new("repbuild/background.bmp"))?,
&mut File::open("repbuild/background.bmp")?,
&mut fs.root_dir().create_file("background.bmp")?,
)?;