From: slack Date: Sun, 19 Aug 2007 03:38:15 +0000 (+0000) Subject: Fix 2 casts al estilo C X-Git-Tag: v0.1~69 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=37c9829cc5c0b93027a795d4939e3ac9deb9013b;p=wenboi.git Fix 2 casts al estilo C git-svn-id: http://slack.codemaniacs.com/wenboi@10 0666ae3d-8926-0410-aeff-ae84559ff337 --- diff --git a/GBRom.cc b/GBRom.cc index e7c3efd..b792a2a 100644 --- a/GBRom.cc +++ b/GBRom.cc @@ -49,8 +49,8 @@ GBRom *read_gbrom(std::string filename) is.seekg(0,ios::beg); void *buffer = ::operator new(length); - is.read((char*)buffer, length); - GBRom *rom = (GBRom*) buffer; + is.read(reinterpret_cast(buffer), length); + GBRom *rom = reinterpret_cast(buffer); char buf[17]; std::memcpy(buf, rom->header.old_title, 16);