Translate N3ME, resolution based on screen size#221
Conversation
| } else if (pItem->m_propName == "Far Plane") { | ||
| pC->m_Data.fFP = (float)atof(pItem->m_curValue); | ||
| } else if (pItem->m_propName == "�Ȱ� ���") { | ||
| } else if (pItem->m_propName == "Use fog") { |
There was a problem hiding this comment.
The case here is inconsistent to what you set the properties to.
You called them "use fog", and "fog color" and then you're checking against "Use fog" & "Fog color" -- which won't match because of case sensitivity.
There was a problem hiding this comment.
Good catch! I also addressed similar places using with breaking changes in terms of properties.
| return; | ||
| } | ||
| char comment[80] = {"������ ���� ��� �ٺ�..^^"}; | ||
| char comment[80] = {"The person who opens this file is an idiot...^^"}; |
There was a problem hiding this comment.
I'm not sure if it's wise to translate this one, considering it's used directly in the files themselves. Though it's technically not checked, and still remains within the constraint, it does technically change the file formats unofficially. Whether or not that's a concern with this project, I don't know.
There was a problem hiding this comment.
@twostars has a point, however from my end this is fine, as this file has no logic nor used officially to check its content. In Korean it looks like random bytes, so at least in English we'll see the actual content lol
| // list�� sort�Լ� ������..-.- | ||
| // ����� ���� ���ϴ���..��.�� | ||
| // Copied the sort function of the list.. | ||
| // It didn�t work properly.. |
There was a problem hiding this comment.
Seems the apostrophe is broken here
| //����Ʈ ���鼭 DTexIndx�� ������ ������ �� ���ֹ���... | ||
| //Go through the list and if something like DTexIndx comes up, get rid of it... | ||
| it = m_Attributes[i].begin(); | ||
| while (it != m_Attributes[i].end()) { | ||
| DTEXTILEATTR * pTile = *it; | ||
| if (pTile->TexID == DTexID) { | ||
| //������... | ||
| //Let's erase... |
There was a problem hiding this comment.
I don't know if these were auto translated, but normally we should add two spaces after a comment operator:
// my comment
The same should apply for all other comments, at least the ones that are not aligned.
| ON_BN_CLICKED(IDC_BTN_SAVE_TILESET, OnBtnSaveTileset) | ||
| ON_BN_CLICKED(IDC_BTN_LOAD_TILESET, OnBtnLoadTileset) | ||
| //}}AFX_MSG_MAP | ||
| ON_STN_CLICKED(IDC_STATIC_TILESETNAME, &CDlgSetDTex::OnStnClickedStaticTilesetname) |
There was a problem hiding this comment.
Was this added by accident? If not used, let's delete.
|
|
||
| void CDlgSetDTex::OnStnClickedStaticTilesetname() { | ||
| // TODO: Add your control notification handler code here | ||
| } |
There was a problem hiding this comment.
Was this added by accident? If not used, let's delete.
|
|
||
| public: | ||
| afx_msg void OnStnClickedStaticTilesetname(); |
There was a problem hiding this comment.
Was this added by accident? If not used, let's delete.
| wsprintf(pGroup->m_Name, pName); | ||
|
|
||
| //���ο� idx�� �����ϱ� ���ؼ� �ϴ� ������ ����.. | ||
| //Let�s sort first to specify a new idx. |
| m_pSceneOutput->CameraGetActive()->m_Data.fNP = 1.0f; | ||
| m_pSceneOutput->CameraGetActive()->m_Data.fFP = m_pMainFrm->GetFP(); | ||
| /* | ||
| m_pSceneOutput->CameraGetActive()->m_Data.fNP = 1.0f; //gutek | ||
| m_pSceneOutput->CameraGetActive()->m_Data.fFP = m_pMainFrm->GetFP(); //gutek | ||
| */ |
There was a problem hiding this comment.
Any reason for commenting this one out? 🚨
| // if(true == m_pSceneOutput->CheckOverlappedShapesAndReport()) //Check for name or location duplicates... | ||
| // { | ||
| // int idYesNo = ::MessageBox(::GetActiveWindow(), "�ߺ��� ������Ʈ���� ���� �Ͻðڽ��ϱ�?", "�ߺ��� ������Ʈ ó��", MB_YESNO); | ||
| // int idYesNo = ::MessageBox(::GetActiveWindow(), "Do you want to delete duplicate objects?", "Handling duplicate objects", MB_YESNO); |
| public: | ||
| afx_msg void OnBnClickedOk(); |
There was a problem hiding this comment.
Remove unused.
| public: | |
| afx_msg void OnBnClickedOk(); |
| //{{AFX_MSG_MAP(CAboutDlg) | ||
| // No message handlers | ||
| //}}AFX_MSG_MAP | ||
| ON_BN_CLICKED(IDOK, &CAboutDlg::OnBnClickedOk) |
There was a problem hiding this comment.
| ON_BN_CLICKED(IDOK, &CAboutDlg::OnBnClickedOk) |
|
|
||
| void CAboutDlg::OnBnClickedOk() { | ||
| // TODO: Add your control notification handler code here | ||
| CDialog::OnOK(); | ||
| } |
There was a problem hiding this comment.
| void CAboutDlg::OnBnClickedOk() { | |
| // TODO: Add your control notification handler code here | |
| CDialog::OnOK(); | |
| } |
No description provided.