Skip to content

Commit

Permalink
- [blam] Fix oopsie with .at() function
Browse files Browse the repository at this point in the history
  • Loading branch information
hbirchtree committed Apr 5, 2020
1 parent 7946723 commit 4d5b732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coffee/blam/include/blam/volta/cblam_bytecode.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ struct opcode_layout
if(param_type != type_t::string_)
Throw(undefined_behavior("invalid string"));

return (*string_seg.at(data_ptr)).str();
return string_seg.at(data_ptr).str();
}

/* Value types for return */
Expand Down

0 comments on commit 4d5b732

Please sign in to comment.