From ea299e358d88fd4bf704c834cf7bdef2715dc266 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 16 Jun 2013 22:18:17 -0700 Subject: [PATCH] Oops, dumb typo. --- Core/HLE/sceAtrac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceAtrac.cpp b/Core/HLE/sceAtrac.cpp index a8734bcc58..d3fbf8972c 100644 --- a/Core/HLE/sceAtrac.cpp +++ b/Core/HLE/sceAtrac.cpp @@ -484,7 +484,7 @@ u32 sceAtracGetAtracID(int codecType) { Atrac *atrac = new Atrac(); atrac->codeType = codecType; - int atracID = createAtrac(new Atrac, codecType); + int atracID = createAtrac(atrac, codecType); if (atracID < 0) { ERROR_LOG_REPORT(HLE, "sceAtracGetAtracID(%i): no free ID", codecType); delete atrac;