Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quiet some warnings which appear on vs2015. #2217

Merged
merged 1 commit into from Mar 16, 2015
Merged

quiet some warnings which appear on vs2015. #2217

merged 1 commit into from Mar 16, 2015

Conversation

shuffle2
Copy link
Contributor

quieted warnings include shadowed variable names and integer extensions.

quieted warnings include shadowed variable names and integer extensions.
@@ -1525,7 +1525,7 @@ void Jit64::rlwimix(UGeckoInstruction inst)
bool isRightShift = mask == (1U << inst.SH) - 1;
if (gpr.R(a).IsImm())
{
u32 maskA = gpr.R(a).offset & ~mask;
u32 maskA = (u32)gpr.R(a).offset & ~mask;

This comment was marked as off-topic.

This comment was marked as off-topic.

@BhaaLseN
Copy link
Member

Not entirely happy with renaming locals to start with _ instead of fixing the globals (which should start with g_ or s_). But I guess that would be a candidate for a whole other PR.

@shuffle2
Copy link
Contributor Author

OK, well...I think all questions are taken care of, and/or there are no blocking complaints? Someone clicky merge or say if that's not the case, thanks.

magumagu added a commit that referenced this pull request Mar 16, 2015
quiet some warnings which appear on vs2015.
@magumagu magumagu merged commit adb8bbe into dolphin-emu:master Mar 16, 2015
@shuffle2 shuffle2 deleted the quiet-warnings branch March 17, 2015 00:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
5 participants